home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Yahoo Messenger 8.xpl < prev    next >
Text File  |  2003-11-28  |  2KB  |  47 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
  5. "NAME"="Next Username To Sign-On As"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.00"
  8. "TEXT 1"="Next User:"
  9. "DESCRIPTION 1"="Specifies the next user name Yahoo! Messenger will sign-on as when it's run.  This can be useful if you want to make it look like you weren't using another user name, for instance, if you expect someone else to run Yahoo! Messenger next, and want their user name to show up as the default."
  10. "DESCRIPTION 2"="Note that your user settings will be kept on file in X:\Program Files\Yahoo!\Messenger\Profiles (by Yahoo!, not X-Setup).  You can safely erase those files, but will lose most stored settings for the user name in question."
  11. "DESCRIPTION 3"="Replace X:\ with your drive letter.  You can delete remaining registry-based user settings from the registry by opening REGEDIT.EXE and going to HKEY_CURRENT_USER\Software\Yahoo\Pager\profiles if desired to totally eradicate a user from your PC.  You must erase both the folder and files specified, as well as the registry prefs/settings for the user you want to completely erase from the PC."
  12. "DESCRIPTION 4"="Be advised, the Yahoo! user account will still exist on the Yahoo! servers on the Internet unless you close your account while online.  This plug-in merely changes the default next user name that will logon to Yahoo! Messenger.  Even if you do all of the steps outlined above to erase the user account from the PC, the account would still exist online until you closed the account online.  However, the steps given here should effectively wipe evidence of the account from the PC you're using locally."
  13. "AUTHOR"="Xteq Systems (CptSiskoX)"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18.  
  19. sP="HKCU\Software\Yahoo\Pager\"
  20. sV1="Yahoo! User ID"
  21.  
  22. Sub Plugin_Initialize 
  23.  if RegPathExists(sP) then
  24.     s=RegReadValue(sP & sV1)
  25.     SetUIElement 1,s
  26.  else
  27.     Disable
  28.  end if
  29. End Sub
  30.  
  31.  
  32. Sub Plugin_CheckData(ElementIndex)
  33. End Sub
  34.  
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  s=GetUIElement(1)
  38.  Call RegWriteValue(sP & sV1,s,1)
  39. End Sub
  40.  
  41.  
  42. Sub Plugin_Terminate 
  43. End Sub
  44.  
  45.  
  46.  
  47.